-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chapters/io: Add checker infrastructure for lab 10 #147
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the checkers. Now add instructions about running the checkers along with a snippet with its output with all tests passing to each task's README.md
.
@@ -22,7 +22,6 @@ void create_fifo_if_needed(void) | |||
|
|||
if (rc < 0) { | |||
rc = unlink(fifo_path); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rc = unlink(fifo_path); | |
unlink(fifo_path); |
You haven't applied my changes yet. |
Pending to get a response Signed-off-by: Viktor09 <[email protected]>
@robertpaulp please add your review. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. GJ!
Prerequisite Checklist
Description of changes
Add checkers for lab 10